home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / phnlgdvk.lha / PhoneLog / src / PhoneLogGenerator.h < prev    next >
Text File  |  1996-05-03  |  491b  |  13 lines

  1.  /* Copyright © 1996 Kai Hofmann. All rights reserved. */
  2.  
  3.  #include <stdio.h>
  4.  #include "PhoneLog.h"
  5.  
  6.  
  7.  FILE *OpenPhoneLog(const char *const name);
  8.  void ClosePhoneLog(FILE *const file);
  9.  void WritePhoneLogStartEntry(FILE *const file, const struct PhoneLogEntry *const item);
  10.  void WritePhoneLogEndEntry(FILE *const file, const struct PhoneLogEntry *const item);
  11.  void WritePhoneLogEntry(FILE *const file, const struct PhoneLogEntry *const item);
  12.  void WritePhoneLogMark(FILE *const file);
  13.